Welcome![Sign In][Sign Up]
Location:
Search - tcp p

Search list

[Firewall-Security端口映射及TCP转发软件源代码

Description:

端口映射

PortTransfer_三种模式。
(1) PortTransfer Port Dest_IP Port
在运行本程序的计算机上监听Port端口,并将所有连接请求转到Dest_IP的Port去
(2) PortTransfer ctrlIP ctrlPort Dest_IP Port
和模式3配合用,程序将先主动连接ctrlIP:ctrlPort,之后所有在模式3的ServerPort端口的请求转到Dest_IP:Port去
(3) PortTransfer ctrlPort ServerPort
在执行模式2前先执行,将监听ctrlPort和ServerPort 端口,ctrlPort供模式2使用,ServerPort提供服务.

模式1适合在网关上运行,将内网IP的端口映射到网关上,
如:PortTransfer 88 192.168.0.110 80
那么网关将开启88端口,所有在88端口的请求将转到内网的192.168.0.110的80端口

模式2和模式3联合使用可以将内网的IP和端口映射到指定的IP和端口上,
一般在公网IP(假设61.1.1.1)上执行模式3,如:PortTransfer 99 80, 80是映射过来的端口
内网用户执行模式2如:PortTransfer 61.1.1.1 99 127.0.0.1 80,
那么程序在内网将先连接61.1.1.1:99建立个连接,并等待接收命令。

之后当61.1.1.1的80端口有请求,将通过99端口命令内网机子和公网机子建立条新的数据连接,
并将请求通过新建的连接将请求转发到内网机.

最后更新:2007.8.31 By DSSZ

最新更改了模3,接收到新连接接令后,不再创建新的临时端口,避免中转服务器有防火墙,临时端口连接不上的情况!
可参看 PortTransfer_3 的修改部分,在transport_old.cpp里面


Platform: | Size: 15570 | Author: testbs | Hits:

[Develop ToolsWSockExpert TCP通信数据分析程序

Description:

WSockExpert .exe TCP通信数据分析程序,可以截取分析所有通过Socket通信的数据内容,有字符串及十六进制模式。而且可以指定进程分析。


Platform: | Size: 260192 | Author: testsb | Hits:

[VxWorksvxWorks下TCP/IP源代码

Description:

vxWorks下的TCP/IP源代码,可作为网络开发的参考资料。


Platform: | Size: 309381 | Author: babyspider | Hits:

[WinSock-NDISTCP实现客户服务器聊天程序

Description:

 

操作系统课程设计任务书


一、设计题目:多机进程通信

应用Socket进程通信技术编写聊天室程序,实现基于服务器的并发多机信息转发。如果各客户端在线则可以实时聊天、发送接收文件,如果某客户端离线,则发送给他的消息可由服务器端进行内容缓存,待重新连线后可以自动接收通过服务器转发的信息或文件。缓存与转发的控制算法可参考操作系统课程中生产者消费者进程同步方法、缓冲池技术等相关理论。
二、设计思路和功能的详细描述
采用TCP协议,所以属于客户机/服务器模式,因此需要聊天服务器端和聊天客户端两个程序,实现的功能是:任意一台装有客户端程序的计算机都可以通过服务器端的IP地址与服务器相连,然后进入聊天室与连接到服务器的其他客户进行聊天。当客户聊天结束时,可以点断开与服务器断开连接,以释放进程让其他等待的客户进入聊天室,本聊天室最大同时支持50个客户端的连接,如果服务器配置较高可以修改程序来增加同时连接数。
三、采用的方法、技术、运行环境及其配置
本聊天程序采用TCP协议,用VC++编写,属于客户机/服务器模式。采用了多线程的机制。其中使用windows Sockets实现多台计算机(多个进程)间的通信,SOCKET实际在计算机中提供了一个通信端口,可以通过这个端口与任何一个具有SOCKET接口的计算机通信。应用程序在网络上传输,接收的信息都通过这个SOCKET接口来实现。客户机/服务器模式中客户应用程序向服务器程序请求服务。一个服务程序通常在一个众所周知的地址监听对服务的请求,也就是说,服务进程一直处于休眠状态,直到一个客户对这个服务的地址提出了连接请求。在这个时刻,服务程序被“惊醒”并且为客户提供服务即对客户的请求作出适当的反应。本聊天程序就是基于这中思想实现的,程序分为两大部分:TCP聊天服务器端和TCP聊天客户端。两者都拥有各自的SOCKET接口,其中服务器端SOCKET接口需要绑定到固定地址上(实现语句:ock=Socket(AF_INET,SOCK_STREAM,0);),等待客户端的连接(实现语句:listen(sock,5);)。等待客户端的连接的过程就是通过多进程机制来实现的。
聊天程序是在VISUAL C++6.0上编译实现的,在WINDOWS2000,XP上测试运行成功。
对客户计算机配置无特殊要求,由于所设置的最大连接进程为50,所以对服务器要求也不高。
四、关键源程序及其详细的注释
<一>、服务器端
1
、Socket初始化
//
初始化对话框
BOOL CCSocketDlg::OnInitDialog()
{

count=0;

m_list.InsertColumn(0,"消息");

m_list.SetColumnWidth(0,435);

m_edit.SetLimitText(99);

.

.

.

.

 


Platform: | Size: 55808 | Author: lenjear | Hits:

[Embeded Linuxtcp/ip client encode

Description:

這是一個tcp/ip 的client 程式碼


Platform: | Size: 6176 | Author: kikihsu | Hits:

[Internet-Network串口转TCP

Description:

串口数据转成TCP协议


Platform: | Size: 381832 | Author: coolbadman | Hits:

[OtherTCP/IP SDK FOR DOS

Description:

TCP/IP SDK FOR DOS


Platform: | Size: 2889803 | Author: tanxiancheng | Hits:

[WinSock-NDISvbtcp

Description:

用vb开发基于tcp协议的互联程序的示范源码,请用winrar进行解压,将下载后的文件后缀名改为.7z


Platform: | Size: 13797 | Author: exraaa | Hits:

[Communicationaccess实现tcp,upp通信

Description:

access实现tcp,upp通信


Platform: | Size: 39694 | Author: nylgwsf | Hits:

[TCP/IP stackdsock-h

Description: DSock 是一个基于DOS 实模式的TCP/IP 库,对于计划在DOS 系统下编写Internet 程序的DM&P 产品用户,该产品是非常适合的。DSock 提供简单的C 语言函数,利用这些函数,程序员可以编写Internet程序。-DSock is a real mode DOS-based TCP/IP library, and plan for the DOS system to prepare procedures for the DMP Internet user of the product, the product is suitable. DSock simple C language function, the use of these functions, programmers can write procedures Internet.
Platform: | Size: 26624 | Author: 林辰 | Hits:

[TCP/IP stackdsock-lib

Description: DSock 是一个基于DOS 实模式的TCP/IP 库,对于计划在DOS 系统下编写Internet 程序的DM&P 产品用户,该产品是非常适合的。DSock 提供简单的C 语言函数,利用这些函数,程序员可以编写Internet程序。-DSock is a real mode DOS-based TCP/IP library, and plan for the DOS system to prepare procedures for the DMP Internet user of the product, the product is suitable. DSock simple C language function, the use of these functions, programmers can write procedures Internet.
Platform: | Size: 25600 | Author: 林辰 | Hits:

[OtherSniffer_1

Description: 一个简单捕获本地TCP数据包程序源码。 适合于初学者。-a simple catch local TCP packet procedure source. Suitable for beginners.
Platform: | Size: 11264 | Author: fef | Hits:

[Program docmodbus_tcp

Description: MOBSUS TCP 协议说明文档(PDF)格式的,介绍MODBUS TCP协议,以及通信接口等。-MOBSUS TCP protocl (pdf)
Platform: | Size: 240640 | Author: 赵延安 | Hits:

[SCM单片机实现TCP IP协议的完整C源程序

Description: 转载单片机实现TCP/IP协议的完整C源程序,带程序注解的,供大家研究-reproduced MCU TCP/IP protocol complete C source code, annotated with procedures for everyone to consider! !
Platform: | Size: 26624 | Author: 啊达 | Hits:

[Internet-NetworkWattcp

Description: 在DOS下开发tcp/ip程序,用它可以做出DOS下的tcp/ip程序。-DOS development tcp/ip procedures, and it can be made under the DOS tcp/ip procedures.
Platform: | Size: 100352 | Author: dj | Hits:

[Program docUDA1.0-ChinesePDF

Description: upnp得技术文档 是对upnp的介绍,UPnP即Universal Plug and Play通用即插即用简称UPNP。UPnP使用标准的TCP/IP和网络协议,使它能够无缝的融入现有网络。是intel、力推的 -UPnP in technical documentation for the UPnP, UPnP is Universal Plug and Play UPnP referred UPNP. UPnP using standard TCP/IP network protocol and enable it to seamlessly integrate into existing networks. Intel is, pushing the
Platform: | Size: 523264 | Author: 撒打碎 | Hits:

[Sniffer Package capture20041211rawsniffer

Description: Example: rawsniffer -p TCP -dp 25,110 -o f:1.txt -m -sniffpacket 嗅探指定规则数据抱并保存到文件 rawsniffer -sniffsmtp 只嗅探smtp,输出到屏幕 rawsniffer -sniffall -dp 0 -o f:1.txt 嗅探smtp,pop,ftp,post,telnet保存到文件,[-dp 0]过滤无用包 rawsniffer -sniffall -dp 0 -o f:1.txt -install sniffer -disname fuck 安装成服务启动并带参数 rawsniffer -uninstall sniffer 卸载服务 Note:参数可自由排序组合!安装成服务模式时最好加上-unecho选项. 代码在压缩包里有!-Example : rawsniffer-p TCP- dp 25,110-o f : 1.txt-m-sniffpacket sniffer data adopt specific rules to document and preserve rawsni ffer- sniffsmtp only sniffer smtp, rawsniffer output to the screen-sniffall- dp 0-o f : 1.txt sniffer smtp, pop, ftp, post, telnet to preserve documents [- dp 0] packet filtering unwanted rawsniffer- sniffall- dp 0-o f : 1.txt-install sniffers- disname fuck installed and launched into service rawsniffer with parameter-uninstall sniffers unloading services Note : Sort free parameter combinations! Installed as models with the best-unecho options. code in a bag compression !
Platform: | Size: 439296 | Author: 贺鹏 | Hits:

[Internet-Networkpproxy

Description: 一个标准版的代理服务器源码。支持UDP,HTTP,TCP多种方式代理。.. -a standard version of the proxy server source code. Support for UDP, HTTP, TCP Acting variety of ways. ..
Platform: | Size: 119808 | Author: 邵丹 | Hits:

[USB developPPP+UDP+uIP+TCP

Description: 毕业设计中移植的的ppp+uip+TCP+USB源代码,自己看吧!-graduation design transplantation of ppp uip TCP USB source code, their Look here!
Platform: | Size: 1204224 | Author: 李江 | Hits:

[Internet-Networknet-TCP

Description: P2P(点对点)的流行产生了大批网络传输软件,这里我们要介绍的就是自己写一个简单的P2P文件传输,一方发送文件,一方接受,直到传输完整个文件。
Platform: | Size: 453632 | Author: 李健 | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net